home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Linux Cubed Series 3: Developer Tools
/
Linux Cubed Series 3 - Developer Tools.iso
/
devel
/
lang
/
lisp
/
gcl-1.000
/
gcl-1
/
gcl-1.0
/
xbin
/
make-fn
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1989-09-04
|
321 b
|
19 lines
#!/bin/sh
LISP=akcl
if [ $# = 2 ] ; then LISP=$2 ; fi
TMP=/tmp/tmpd$$
mkdir ${TMP}
cp $@ ${TMP}
for v in $@ ;
do
echo '(load (format nil "~a~a" si::*system-directory* "../cmpnew/collectfn"))' \
'(compiler::emit-fn t)'\
"(compile-file \"${TMP}/$v\" :o-file nil)" | ${LISP}
done
mv ${TMP}/*.fn .
rm -f -r ${TMP}